home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility1 / gs261src.zip / ESTACK.H < prev    next >
C/C++ Source or Header  |  1993-05-13  |  4KB  |  92 lines

  1. /* Copyright (C) 1989, 1992, 1993 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* estack.h */
  20. /* Definitions for Ghostscript execution stack */
  21.  
  22. /********************************
  23.  * NOTE: on MS-DOS systems, the execution stack is stored in the data segment.
  24.  * This leads to large performance gains, at the expense of having to swap
  25.  * the stack explicitly when switching contexts or handling segment under-
  26.  * or overflow (none of which are implemented yet!).
  27.  ********************************/
  28. typedef ref _ds *es_ptr;
  29. typedef const ref _ds *const_es_ptr;
  30. extern es_ptr esbot, esp, estop;
  31. /*
  32.  * To improve performance, we cache the currentfile pointer
  33.  * (i.e., `shallow-bind' it in Lisp terminology).  The invariant is as
  34.  * follows: either esfile points to the currentfile slot on the estack
  35.  * (i.e., the topmost slot with an executable file), or it is 0.
  36.  * Note that the following algorithm suffices to maintain the invariant:
  37.  * whenever a routine pushes or pops anything on the estack, if the object
  38.  * *might* be an executable file, set esfile to 0.
  39.  */
  40. extern es_ptr esfile;
  41.  
  42.  
  43. /*
  44.  * The execution stack is used for three purposes:
  45.  *
  46.  *    - Procedures being executed are held here.  They always have
  47.  * type = t_array, t_mixedarray, or t_shortarray, with a_executable set.
  48.  *
  49.  *    - if, ifelse, etc. push arguments to be executed here.
  50.  * They may be any kind of object whatever.
  51.  *
  52.  *    - Control operators (filenameforall, for, repeat, loop, forall,
  53.  * pathforall, run, and stopped) mark the stack by pushing an object with
  54.  * type = t_null, attrs = a_executable, size = es_xxx (see below), and
  55.  * value.opproc = a cleanup procedure that will get called whenever
  56.  * the execution stack is about to get cut back beyond this point (either
  57.  * for normal completion of the operator, or any kind of exit).
  58.  * (Executable null objects can't ever appear on the e-stack otherwise:
  59.  * if a control operator pushes one, it gets popped immediately.)
  60.  * The cleanup procedure is called with esp pointing just BELOW the mark,
  61.  * i.e., the mark has already been popped.
  62.  *
  63.  * The loop operators also push whatever state they need,
  64.  * followed by an operator object that handles continuing the loop.
  65.  */
  66.  
  67. /* Macro for marking the execution stack */
  68. #define make_mark_estack(ep, es_idx, proc)\
  69.   make_tasv(ep, t_null, a_executable, es_idx, opproc, proc)
  70. #define mark_estack(es_idx, proc)\
  71.   (++esp, make_mark_estack(esp, es_idx, proc))
  72. #define r_is_estack_mark(ep)\
  73.   r_has_type_attrs(ep, t_null, a_executable)
  74. #define estack_mark_index(ep) r_size(ep)
  75.  
  76. /* Macro for pushing an operator on the execution stack */
  77. /* to represent a continuation procedure */
  78. #define make_op_estack(ep, proc)\
  79.   make_oper(ep, 0, (dummy_op_proc_p)(proc))
  80. #define push_op_estack(proc)\
  81.   (++esp, make_op_estack(esp, proc))
  82.  
  83. /* Macro to ensure enough room on the execution stack */
  84. #define check_estack(n)\
  85.   if ( esp + (n) > estop ) return_error(e_execstackoverflow)
  86.  
  87. /* Define the various kinds of execution stack marks. */
  88. #define es_other 0            /* internal use */
  89. #define es_show 1            /* show operators */
  90. #define es_for 2            /* iteration operators */
  91. #define es_stopped 3            /* stopped operator */
  92.